home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-09-14 | 808 b | 30 lines | [TEXT/PJMM] |
- {*** This copy of SettingsStubs modified for <your project here>! ***}
-
- {========================================}
- {============= Setting handling ==============}
- {========================================}
-
- {SettingsStubs is the non-reusable part of the Settings unit in the SAT Add-ons.}
- {You should make a copy for your project and modify it to suit your needs.}
- {You can change the first key, number of keys, dialog resource number, and add new fields as needed.}
-
- unit SettingsStubs;
- interface
-
- const
- kNumKeys = 4;
- kFirstKeyItem = 3; {Dialog item number}
- kKeysDlogRes = 128;
-
- type
- SettingsRec = record
- {Insert fields here}
-
- key: array[1..kNumKeys] of Char;
- keyCode: array[1..kNumKeys] of Integer;
- end;
- SettingsPtr = ^SettingsRec;
- SettingsHnd = ^SettingsPtr;
-
- implementation
- end.